home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / boot / PPS.lha / PPS3 / PPS-Install < prev    next >
Text File  |  2000-08-06  |  3KB  |  81 lines

  1. (set language
  2. (askchoice  (prompt "Which language ?")
  3.                 (help @askchoice-help)
  4.                 (choices "Deutsch" "English")
  5.                 (default language))
  6. )
  7.  
  8. (select language
  9.     
  10. (
  11.     (set #welcome "\nDieses Skript installiert PPS (Power Passwortschutz) auf ihrem AMIGA-System. \n\nPPS © 1998 by TFM .")
  12.     (set #copy1 "\nKopiere pps nach C:\n")
  13.     (set #note "\nAlle Daten wurden kopiert.\nNun fügen SIE ¨C:pps¨ in ihre ¨s:startup-sequence¨ ein\n( VOR ¨C:Loadwb¨ ) ")
  14.     (set #note2"\nBestätigen sie die erste Passwortabfrage mit <ENTER>\nDanach können sie ihr persönliches Passwort angeben.\n") 
  15.     (set #note3"\nDie Freeware Version von PPS V3.0 wurde erfolgreich installiert.\n")
  16.     (set #note4" \nBITTE HABEN SIE VERSTÄNDNIS DAFÜR,\nDAS ICH NICHT DIE VERANTWORTUNG FÜR EVENTUELLE\nSCHÄDEN IRGENDEINER ART DIE DURCH DIE BENUTZUNG DES PROGRAMS ENTSTEHEN, ÜBERNEHMEN KANN.\n\n(Also merken sie sich ihr Passwort bitte gut.)") 
  17.     (set #help1 "\n Dies ist das Programm ¨PPS V3.0¨ ,es ist absolut notwendig..")
  18.     (set #doc "Wohin sollen die Dok-Dateien kopiert werden ?")
  19.     (set #helpfont "Dies sind alle Schriftarten die PPS benötigt. Einige werden sie vielleicht nicht in bestimmten Größen besitzen, und der Font ¨PPS¨ ist unerläßlich für das Programm !")
  20.     (set #copydoc "Welche Dok-Dateien sollen kopiert werden ?")
  21.     (set #fonts "Es werden die Fonts kopiert ...") 
  22. )
  23.  
  24. (
  25.     (set #welcome "\nThis script will install PPS (Power Passwortschutz) on your Harddisk.\n\nPPS © 1998 by TFM .")
  26.     (set #copy1 "\nCopying pps to C:\n")
  27.     (set #note "Now it`s YOUR turn.\nEdit your ¨s:startup-sequence¨ and type in ¨C:pps¨. \n( BEFORE ¨C:Loadwb¨ )")
  28.     (set #note2 "\nConfirm the first question for a password with <ENTER>\nHereafter you can specify your own password.") 
  29.     (set #note3"\nThe Freeware Version of PPS V3.0 was installed successfully.\n")
  30.     (set #note4" \nPLEASE UNDERSTAND,\nTHAT I CAN`T TAKE RESPONSE FOR ANY\nKIND OF DAMAGE CAUSED THROUGH THE USE OF THIS PROGRAM\n\n(So PLEASE remember your password.)") 
  31.     (set #help1 "\n This is the executable ¨pps¨ ,it is absolutly necessary.")
  32.     (set #doc "Where should the doc-files be stored ?") 
  33.     (set #helpfont "These are all the fonts needed by PPS. You will probaly have some, but perhaps not in these sizes. And the font ¨PPS¨ is absolutly necessary !")
  34.     (set #copydoc "What doc-files should be copied ?")
  35.     (set #fonts "Copying the fonts ...")
  36. )
  37. )
  38.  
  39.  
  40. (message #welcome)
  41.  
  42. (complete 0)
  43. (copyfiles
  44.      (prompt #copy1)
  45.      (help #help1)
  46.      (source "pps")
  47.      (dest "C:")
  48.      (confirm)
  49.  
  50. )
  51. (complete 50)
  52. (copyfiles
  53.      (prompt #fonts)
  54.      (source "fonts")
  55.      (dest "Fonts:")
  56.      (help #helpfont)
  57.      (confirm)
  58.      (all)
  59. )
  60.  
  61. (complete 75)
  62. (set DocPath (askdir (prompt #doc)
  63.                                    (help @askdir-help)
  64.                                    (default @default-dest)
  65.                           )
  66. )
  67. (copyfiles
  68.      (prompt #copydoc)  
  69.      (source "Doc")
  70.      (dest DocPath)
  71.      (help @copyfiles-help)
  72.      (confirm)
  73.      (all) 
  74. )
  75. (complete 100)
  76. (message #note)
  77. (message #note2)
  78. (message #note3)
  79. (message #note4)
  80. (exit (quiet))
  81.